From 3f83ec4a55826bb2458cf8fccde9ad7dd6d90ddd Mon Sep 17 00:00:00 2001 From: Kristian Hartikainen Date: Sun, 22 Jun 2025 13:57:29 -0400 Subject: [PATCH] Fix spelling --- xmanager/xm_local/packaging/bazel_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmanager/xm_local/packaging/bazel_tools.py b/xmanager/xm_local/packaging/bazel_tools.py index 3049523..86c7982 100644 --- a/xmanager/xm_local/packaging/bazel_tools.py +++ b/xmanager/xm_local/packaging/bazel_tools.py @@ -66,7 +66,7 @@ def _get_workspace_directory(events: Sequence[bes_pb2.BuildEvent]) -> str: def _read_build_events(path: str) -> List[bes_pb2.BuildEvent]: """Parses build events from a file referenced by a given `path`. - The file should contain serialized length-delimited`bes_pb2.BuildEvent` + The file should contain serialized, length-delimited, `bes_pb2.BuildEvent` messages. See https://docs.bazel.build/versions/master/build-event-protocol.html#consume-in-binary-format for details.