Skip to content

Commit 065da8a

Browse files
committed
fix typo in indexing doc
1 parent 96c9d2d commit 065da8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cosmos-db/how-to-manage-indexing-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ indexingPolicy.setIndexingMode(IndexingMode.Consistent);
467467
// Add an included path
468468

469469
Collection<IncludedPath> includedPaths = new ArrayList<>();
470-
ExcludedPath includedPath = new IncludedPath();
470+
IncludedPath includedPath = new IncludedPath();
471471
includedPath.setPath("/*");
472472
includedPaths.add(includedPath);
473473
indexingPolicy.setIncludedPaths(includedPaths);

0 commit comments

Comments
 (0)