From e6cb66382345a449371501dedad621006be75fd5 Mon Sep 17 00:00:00 2001 From: Anant Shukla Date: Fri, 9 Aug 2024 15:11:35 +0530 Subject: [PATCH] removed non-working twitter link in docs/source/contributing/developer_guide.md and changed twitter link to X in readme.rst --- README.rst | 2 +- docs/source/contributing/developer_guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index eebe65d1eb..7f230d9694 100644 --- a/README.rst +++ b/README.rst @@ -222,7 +222,7 @@ You can also follow us on these social media platforms for updates and other ann - `LinkedIn @pymc `__ - `YouTube @PyMCDevelopers `__ -- `Twitter @pymc_devs `__ +- `X @pymc_devs `__ - `Mastodon @pymc@bayes.club `__ To report an issue with PyMC please use the `issue tracker `__. diff --git a/docs/source/contributing/developer_guide.md b/docs/source/contributing/developer_guide.md index c79cfa774c..257795b140 100644 --- a/docs/source/contributing/developer_guide.md +++ b/docs/source/contributing/developer_guide.md @@ -173,7 +173,7 @@ self.logp_nojac_unscaledt = distribution.logp_nojac(data) ### Model context and Random Variable -I like to think that the ``with pm.Model() ...`` is a key syntax feature and *the* signature of PyMC model language, and in general a great out-of-the-box thinking/usage of the context manager in Python (with [some critics](https://twitter.com/_szhang/status/890793373740617729), of course). +I like to think that the ``with pm.Model() ...`` is a key syntax feature and *the* signature of PyMC model language, and in general a great out-of-the-box thinking/usage of the context manager in Python (with some critics, of course). Essentially [what a context manager does](https://www.python.org/dev/peps/pep-0343/) is: