From f2538b9b0a212ffbda60dfb59ef8b70ba1bf4f35 Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Wed, 4 Dec 2024 13:21:32 +1300 Subject: [PATCH] Add missing parenthesis. --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 3ad8b6fac..03776bf33 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ The library ([available on PyPI](https://pypi.org/project/ops/)) provides: - {ref}`ops`, the API to respond to Juju events and manage the application; - {ref}`ops_pebble`, the Pebble client, a low-level API for Kubernetes containers; - {ref}`ops_testing`, the recommended API for unit testing charms; and -- {ref}`ops_testing_harness`, the legacy (deprecated API for unit testing charms. +- {ref}`ops_testing_harness`, the legacy (deprecated) API for unit testing charms. You can structure your charm however you like, but with the `ops` library, you get a framework that promotes consistency and readability by following best practices. It also helps you organise your code better by separating different aspects of the charm, such as managing the application's state, handling integrations with other services, and making the charm easier to test.