Просмотр исходного кода

Update comments in toolchain to point to new names of files (#3264)

josh11b 2 лет назад
Родитель
Сommit
412e4fb461
2 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      toolchain/lex/tokenized_buffer_fuzzer.cpp
  2. 2 2
      toolchain/parse/context.h

+ 1 - 1
toolchain/lex/tokenized_buffer_fuzzer.cpp

@@ -19,7 +19,7 @@ extern "C" int LLVMFuzzerTestOneInput(const unsigned char* data,
   // escaped quotes (`\"` repeated) have O(M * N) behavior for M errors in a
   // file length N, so either that will need to also be fixed or M will need to
   // shrink for large (1MB+) inputs.
-  // This also affects parse_tree_fuzzer.cpp.
+  // This also affects parse/parse_fuzzer.cpp.
   if (size > 100000) {
     return 0;
   }

+ 2 - 2
toolchain/parse/context.h

@@ -18,8 +18,8 @@
 
 namespace Carbon::Parse {
 
-// Context and shared functionality for parser handlers. See parser_state.def
-// for state documentation.
+// Context and shared functionality for parser handlers. See state.def for state
+// documentation.
 class Context {
  public:
   // Possible operator fixities for errors.