Skip to content
This repository was archived by the owner on Jul 25, 2022. It is now read-only.

Commit a4e2c2e

Browse files
committed
Minor adjustments.
1 parent 62cee85 commit a4e2c2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

robot-control-src/WebserverHandle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void WebserverHandle::loop() {
7575
updateHtmlSource();
7676
}
7777

78-
WebserverHandle::WebserverHandle(ESP8266WebServer &webserver,
78+
WebserverHandle::WebserverHandle(ESP8266WebServer& webserver,
7979
const EnvironmentRecord &environmentRecord) :
8080
htmlSourceFrontBuffer(htmlSourceTemplate), server(webserver), environment(
8181
environmentRecord) {
@@ -96,7 +96,7 @@ void WebserverHandle::setup() {
9696
}
9797

9898
void WebserverHandle::updateHtmlSource() {
99-
constexpr std::size_t maxCharPerPosition = (5+1)*2; //!< when serializing the position, the number of characters maximum used per position
99+
constexpr std::size_t maxCharPerPosition = (5+1)*2; // when serializing the position, the number of characters maximum used per position
100100
constexpr std::size_t positionsStringMaxLength = maxCharPerPosition*environment.numberOfPositions+1;
101101

102102
static char htmlSourceBackBufferA[size(htmlSourceTemplate) + positionsStringMaxLength] = {0};

0 commit comments

Comments
 (0)