comparison OrthancServer/OrthancRestApi/OrthancRestResources.cpp @ 3973:d86bddb50972

fix spelling errors according to debian
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 22 May 2020 18:40:35 +0200
parents 4cdc875510d1
children
comparison
equal deleted inserted replaced
3972:7f8b30416d50 3973:d86bddb50972
336 context.ReadDicomAsJson(full, publicId, ignoreTagLength); 336 context.ReadDicomAsJson(full, publicId, ignoreTagLength);
337 AnswerDicomAsJson(call, full, format); 337 AnswerDicomAsJson(call, full, format);
338 } 338 }
339 else 339 else
340 { 340 {
341 // This path allows to avoid the JSON decoding if no 341 // This path allows one to avoid the JSON decoding if no
342 // simplification is asked, and if no "ignore-length" argument 342 // simplification is asked, and if no "ignore-length" argument
343 // is present 343 // is present
344 std::string full; 344 std::string full;
345 context.ReadDicomAsJson(full, publicId); 345 context.ReadDicomAsJson(full, publicId);
346 call.GetOutput().AnswerBuffer(full, MimeType_Json); 346 call.GetOutput().AnswerBuffer(full, MimeType_Json);