Skip to content

Commit

Permalink
Fixed typo (#2767)
Browse files Browse the repository at this point in the history
from wpi::Log::BooleanLogEntry to wpi::log::BooleanLogEntry for C++

Co-authored-by: Steephydra393 <97418039+Steephydra393@users.noreply.github.com>
  • Loading branch information
sciencewhiz and Steephydra393 authored Oct 6, 2024
1 parent b0944a3 commit b2274d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/docs/software/telemetry/datalog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ The LogEntry classes can be used in conjunction with DataLogManager to record va
frc::DataLogManager::Start();
// Set up custom log entries
wpi::log::DataLog& log = frc::DataLogManager::GetLog();
myBooleanLog = wpi::Log::BooleanLogEntry(log, "/my/boolean");
myBooleanLog = wpi::log::BooleanLogEntry(log, "/my/boolean");
myDoubleLog = wpi::log::DoubleLogEntry(log, "/my/double");
myStringLog = wpi::log::StringLogEntry(log, "/my/string");
}
Expand Down

0 comments on commit b2274d9

Please sign in to comment.