From 29be1949912b8c9a3b0494f84fd0c3c89e429e43 Mon Sep 17 00:00:00 2001 From: Scott Wolchok Date: Tue, 9 Apr 2024 11:08:45 -0700 Subject: [PATCH] Fix indentation in selective build example code (#2773) Summary: Noticed this page didn't line up right. Now it does. Reviewed By: kirklandsign Differential Revision: D55542836 --- docs/source/kernel-library-selective-build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/kernel-library-selective-build.md b/docs/source/kernel-library-selective-build.md index 7d79e51df7e..1c70cc7e7fd 100644 --- a/docs/source/kernel-library-selective-build.md +++ b/docs/source/kernel-library-selective-build.md @@ -101,9 +101,9 @@ functions_yaml_target = "//executorch/kernels/portable:functions.yaml", deps = [ "//executorch/examples/portable/custom_ops:custom_ops_1", # kernel library "//executorch/examples/portable/custom_ops:custom_ops_2", # kernel library - "//executorch/kernels/portable:operators", # kernel library + "//executorch/kernels/portable:operators", # kernel library ":select_ops_from_yaml", - ":select_ops_in_list", + ":select_ops_in_list", ], ) ```