Skip to content

Commit 6ad1346

Browse files
authored
Merge pull request #104996 from timsander1/indexing
fix typo in indexing doc
2 parents 1ffb02b + 065da8a commit 6ad1346

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)