Post History
In my opinion, any answer looks messy. One "sentence" with capitals halfway through bugs me; so does a line starting without a capital. Personally, I would restructure the entire thing to avoid th...
Answer
#3: Attribution notice added
Source: https://writers.stackexchange.com/a/16514 License name: CC BY-SA 3.0 License URL: https://creativecommons.org/licenses/by-sa/3.0/
#2: Initial revision
In my opinion, any answer looks messy. One "sentence" with capitals halfway through bugs me; so does a line starting without a capital. Personally, I would restructure the entire thing to avoid the issue entirely: ### Example 1 > Currently, line 57 of _camera.py_ looks like this: > > camera.start_recording('foo.h264', quantization=25) > > In this line, the parameter `quantization` needs to be replaced with `quality`, giving us this: > > camera.start_recording('foo.h264', quality=25) ### Example 2 > Look at Figure 1 below. Our code currently contains line (1); we need to replace it with line (2). > > (1) camera.start_recording('foo.h264', quantization=25) > > (2) camera.start_recording('foo.h264', quality=25) > > **_Figure 1_** - Two versions of line 57 of the code in camera.py (Obviously I don't know your code file name, line numbers, or programming language. Substitute where necessary. "camera.py" can be replaced with Example 1 if you're taking that route.)