Browse Source

Fix escape < sign in XML comment

pull/2633/head
Brian Popow 2 years ago
parent
commit
dd9f3832f7
  1. 2
      src/ImageSharp/Formats/Heif/Av1/OpenBitstreamUnit/ObuReader.cs

2
src/ImageSharp/Formats/Heif/Av1/OpenBitstreamUnit/ObuReader.cs

@ -1531,7 +1531,7 @@ internal class ObuReader
=> sequenceLevelIndex is < 24 or 31;
/// <summary>
/// Returns the smallest value for k such that blockSize << k is greater than or equal to target.
/// Returns the smallest value for k such that blockSize &lt;&lt; k is greater than or equal to target.
/// </summary>
public static int TileLog2(int blockSize, int target)
{

Loading…
Cancel
Save