Skip to content

Commit b9178a7

Browse files
authoredMar 5, 2025
Merge branch 'main' into javascript-dom-manipulation
2 parents 8834ad9 + 40af1ba commit b9178a7

File tree

2 files changed

+3
-3
lines changed
  • content

2 files changed

+3
-3
lines changed
 

‎content/plotly/concepts/figure-factory/terms/create-quiver/create-quiver.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fig.show()
7070

7171
The output will be:
7272

73-
![The output is a quiver plot displaying arrows arranged in a circular pattern, illustrating directional vectors clearly.](https://raw.githubusercontent.com/Codecademy/docs/main/media/basic-quiver-plot)
73+
![The output is a quiver plot displaying arrows arranged in a circular pattern, illustrating directional vectors clearly.](https://raw.githubusercontent.com/Codecademy/docs/main/media/basic-quiver-plot.png)
7474

7575
### Customized Quiver Plot
7676

@@ -95,4 +95,4 @@ fig.update_layout(title="Grid-Based Quiver Plot")
9595
fig.show()
9696
```
9797

98-
![The output is a quiver plot with red arrows of increased size and width, making the vector field more distinct.](https://raw.githubusercontent.com/Codecademy/docs/main/media/custom-quiver-plot)
98+
![The output is a quiver plot with red arrows of increased size and width, making the vector field more distinct.](https://raw.githubusercontent.com/Codecademy/docs/main/media/custom-quiver-plot.png)

‎content/python/concepts/collections-module/terms/Counter/Counter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ import collections
4747
c = collections.Counter("supercalifragilisticexpialidocious")
4848
print(f"Counter Collection: {c}\n")
4949
print(f"Sorted: {sorted(c.elements())}\n")
50-
print("5 Most Common Items: {c.most_common(5)}")
50+
print(f"5 Most Common Items: {c.most_common(5)}")
5151
```

0 commit comments

Comments
 (0)