Commit ba025a8a authored by Oleh Lamzin's avatar Oleh Lamzin Committed by Commit Bot

wilco_dtc_supportd: use space delimiter instead of apostrophe

Use space delimiter for numbers in documentation instead apostrophe.
Space delimiter is part of SI/ISO 31-0 standard.

Bug: b:130276290
Change-Id: I74845855621ad62cb24db4f744c6de04b7974e58
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207371Reviewed-by: default avatarMattias Nissler <mnissler@chromium.org>
Commit-Queue: Oleh Lamzin <lamzin@google.com>
Cr-Commit-Position: refs/heads/master@{#770601}
parent 08108e54
......@@ -70,7 +70,7 @@ interface WilcoDtcSupportdService {
// JSON. Delivery of the message is not guaranteed (for example, if the
// wilco_dtc daemon isn't running at the moment).
//
// NOTE: the |json_message| message must not exceed 1 MB (1'000'000 bytes).
// NOTE: the |json_message| message must not exceed 1 MB (1 000 000 bytes).
//
// The response will contain the JSON message returned by the wilco_dtc
// daemon. The response handle will be unset if the request wasn't delivered
......@@ -110,7 +110,7 @@ interface WilcoDtcSupportdClient {
// * |headers| - the list of HTTP headers.
// * |request_body| - the body of the HTTP request.
// NOTE: the total size of all |handle| fields in the request must not exceed
// 1 MB (1'000'000 bytes).
// 1 MB (1 000 000 bytes).
//
// The response to that web request:
// * the |status| of the web request,
......@@ -118,7 +118,7 @@ interface WilcoDtcSupportdClient {
// |kHttpError|, otherwise the HTTP status code is 0.
// * |response_body| - the web response payload. The handle is valid only
// if |status| is |kOk| or |kHttpError|. And the length
// is guaranteed to not exceed 1 MB (1'000'000 bytes).
// is guaranteed to not exceed 1 MB (1 000 000 bytes).
PerformWebRequest@0(WilcoDtcSupportdWebRequestHttpMethod http_method,
handle url,
array<handle> headers,
......@@ -131,13 +131,13 @@ interface WilcoDtcSupportdClient {
// JSON. Delivery of the message is not guaranteed (for example, if no user is
// currently logged in that has the wilco_dtc UI extension installed).
//
// NOTE: the size of the |json_message| must not exceed 1 MB (1'000'000
// NOTE: the size of the |json_message| must not exceed 1 MB (1 000 000
// bytes).
//
// The response will contain the JSON message returned by the extension. The
// response handle will be unset if the request wasn't delivered to the
// extension or the extension made no reply. The response is guaranteed to not
// exceed 1 MB (1'000'000 bytes).
// exceed 1 MB (1 000 000 bytes).
//
// NOTE: Both request and response messages are opaque to Chrome and not
// interpreted by it in any way (except for the JSON validity verification
......@@ -149,7 +149,7 @@ interface WilcoDtcSupportdClient {
=> (handle? response_json_message);
// Retrieves a JSON-formatted configuration data. The length of
// |json_configuration_data| does not exceed 20'000 bytes.
// |json_configuration_data| does not exceed 20 000 bytes.
GetConfigurationData@2() => (string json_configuration_data);
// Handles actionable EC events related to power (i.e., battery,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment