From 49209944216f9dfd16bbafff0787f38453c4868a Mon Sep 17 00:00:00 2001 From: Samuel Bronson Date: Wed, 19 Jul 2023 14:20:08 -0400 Subject: [PATCH] directory-structure.md: src/hhbc -> src/hackc The new byte-compiler got renamed in commit: 43f86984885592c6b2d55a7bdc9e242fab38efcf (Rename directory hhbc to hackc), presumably to disabiguate it from the bytecode format. --- hphp/doc/hackers-guide/directory-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/doc/hackers-guide/directory-structure.md b/hphp/doc/hackers-guide/directory-structure.md index fdddef10459ce..adfef50aa7d25 100644 --- a/hphp/doc/hackers-guide/directory-structure.md +++ b/hphp/doc/hackers-guide/directory-structure.md @@ -3,7 +3,7 @@ There are over 1000 C++ files in HHVM's codebase, split into a number of different directories. This is a rough overview of what lives where (all paths are under `hphp/`): -`compiler/`: The old parser and bytecode emitter. This is deprecated and is currently being removed; the new replacement is in `hack/src/hhbc`. +`compiler/`: The old parser and bytecode emitter. This is deprecated and is currently being removed; the new replacement is in `hack/src/hackc/`. `doc/`: Documentation, of varying age and quality.